home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 September / PCWorld_2006-09_cd.bin / komunikace / k-ninja / setup-kninja_v2.exe / {app} / res / ua.css < prev    next >
Cascading Style Sheet File  |  2005-11-18  |  6KB  |  236 lines

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3.  *
  4.  * The contents of this file are subject to the Mozilla Public License Version
  5.  * 1.1 (the "License"); you may not use this file except in compliance with
  6.  * the License. You may obtain a copy of the License at
  7.  * http://www.mozilla.org/MPL/
  8.  *
  9.  * Software distributed under the License is distributed on an "AS IS" basis,
  10.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11.  * for the specific language governing rights and limitations under the
  12.  * License.
  13.  *
  14.  * The Original Code is mozilla.org code.
  15.  *
  16.  * The Initial Developer of the Original Code is
  17.  * Netscape Communications Corporation.
  18.  * Portions created by the Initial Developer are Copyright (C) 1998
  19.  * the Initial Developer. All Rights Reserved.
  20.  *
  21.  * Contributor(s):
  22.  *
  23.  * Alternatively, the contents of this file may be used under the terms of
  24.  * either of the GNU General Public License Version 2 or later (the "GPL"),
  25.  * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  26.  * in which case the provisions of the GPL or the LGPL are applicable instead
  27.  * of those above. If you wish to allow use of your version of this file only
  28.  * under the terms of either the GPL or the LGPL, and not to allow others to
  29.  * use your version of this file under the terms of the MPL, indicate your
  30.  * decision by deleting the provisions above and replace them with the notice
  31.  * and other provisions required by the GPL or the LGPL. If you do not delete
  32.  * the provisions above, a recipient may use your version of this file under
  33.  * the terms of any one of the MPL, the GPL or the LGPL.
  34.  *
  35.  * ***** END LICENSE BLOCK ***** */
  36.  
  37. @import url(resource://gre/res/html.css);
  38. @import url(chrome://global/content/xul.css);
  39. @import url(resource://gre/res/quirk.css);
  40.  
  41. @namespace parsererror url(http://www.mozilla.org/newlayout/xml/parsererror.xml);
  42.  
  43. /* defaults for the root element that are easier to specify here than in
  44.    C++ code */
  45. *|*:root {
  46.   quotes: "\201C" "\201D" "\2018" "\2019";
  47. }
  48.  
  49. /* magic -- some of these rules are important to keep pages from overriding
  50.             them
  51. */
  52.  
  53. /* Tables */
  54.  
  55. *|*::-moz-table {
  56.   display: table !important;
  57.   -moz-box-sizing: border-box; /* XXX do we really want this? */
  58. }
  59.  
  60. *|*::-moz-table-outer {
  61.   display: table !important;
  62.   margin: 0;
  63.   padding: 0;
  64.   float: inherit;
  65.   clear: inherit;
  66.   position: inherit;
  67.   top: inherit;
  68.   right: inherit;
  69.   bottom: inherit;
  70.   left: inherit;
  71.   z-index: inherit;
  72.   clip: inherit;
  73.   /* background and border should be inherited so that computed style
  74.    * (which uses the outer frame) will get the right values for these
  75.    * properties.  Since the outer frame does not paint, inheriting
  76.    * these is OK.
  77.    */
  78.   background: inherit;
  79.   border: inherit;
  80.   opacity: inherit;
  81.   page-break-before: inherit;
  82.   page-break-after: inherit;
  83. }
  84.  
  85. *|*::-moz-table-row {
  86.   display: table-row !important;
  87. }
  88.  
  89. /* The ::-moz-table-column pseudo-element is for extra columns at the end 
  90.    of a table. */
  91. *|*::-moz-table-column {
  92.   display: table-column !important;
  93. }
  94.  
  95. *|*::-moz-table-column-group {
  96.   display: table-column-group !important;
  97. }
  98.  
  99. *|*::-moz-table-row-group {
  100.   display: table-row-group !important;
  101. }
  102.  
  103. *|*::-moz-table-cell {
  104.   display: table-cell !important;
  105.   white-space: inherit;
  106. }
  107.  
  108. /* Lists */
  109.  
  110. *|*::-moz-list-bullet, *|*::-moz-list-number {
  111.   display: inline;
  112.   vertical-align: baseline;
  113.   -moz-margin-end: 8px;
  114. }
  115.  
  116. /* Links */
  117.  
  118. *|*:-moz-any-link {
  119.   cursor: pointer;
  120. }
  121.  
  122. *|*:-moz-any-link:focus {
  123.   outline: 1px dotted invert;
  124. }
  125.  
  126. /* Miscellaneous */
  127.  
  128. *|*::-moz-anonymous-block, *|*::-moz-cell-content {
  129.   display: block !important;
  130. }
  131.  
  132. *|*::-moz-scrolled-content, *|*::-moz-scrolled-canvas,
  133. *|*::-moz-scrolled-page-sequence {
  134.   /* e.g., text inputs, select boxes */
  135.   padding: inherit;
  136.   display: inherit;
  137.   -moz-box-orient: inherit;
  138.   /* make unicode-bidi inherit, otherwise it has no effect on text inputs and
  139.      blocks with overflow: scroll; */
  140.   unicode-bidi: inherit;
  141.   -moz-column-count: inherit;
  142.   -moz-column-width: inherit;
  143.   -moz-column-gap: inherit;
  144.   /* Do not change these. nsCSSFrameConstructor depends on them to create a good
  145.      frame tree. */
  146.   position: static !important;
  147.   float: none !important;
  148. }
  149.  
  150. *|*::-moz-viewport, *|*::-moz-viewport-scroll, *|*::-moz-canvas, *|*::-moz-scrolled-canvas {
  151.   display: block !important;
  152.   background-color: inherit;
  153. }
  154.  
  155. *|*::-moz-viewport-scroll {
  156.   overflow: auto;
  157. }
  158.  
  159. *|*::-moz-column-content { 
  160.   /* the column boxes inside a column-flowed block */
  161.   /* make unicode-bidi inherit, otherwise it has no effect on column boxes */
  162.   unicode-bidi: inherit;
  163.   /* inherit the outer frame's display, otherwise we turn into an inline */
  164.   display: inherit !important;
  165.   /* Carry through our parent's height so that %-height children get
  166.   their heights set */
  167.   height: 100%;
  168. }
  169.  
  170. *|*::-moz-page, *|*::-moz-page-sequence, *|*::-moz-scrolled-page-sequence {
  171.   display: block !important;
  172.   background: transparent;
  173. }
  174.  
  175. *|*::-moz-pagecontent {
  176.   display: block !important;
  177. }
  178.  
  179. *|*::-moz-pagebreak {
  180.   display: block !important;
  181. }
  182.  
  183. *|*::-moz-anonymous-positioned-block {
  184.   display: block !important;
  185.   position: relative;
  186.   top: inherit; 
  187.   left: inherit;
  188.   bottom: inherit;
  189.   right: inherit;
  190.   z-index: inherit;
  191.   clip: inherit;
  192.   opacity: inherit;
  193. }
  194.  
  195. /* Printing */
  196.  
  197. @media print {
  198.  
  199.   * {
  200.     cursor: default !important;
  201.   }
  202.  
  203.   *|*::-moz-viewport, *|*::-moz-viewport-scroll, *|*::-moz-canvas,
  204.   *|*::-moz-scrolled-canvas {
  205.     background-color: #737373 !important;
  206.   }
  207.  
  208. }
  209.  
  210. /* XML parse error reporting */
  211.  
  212. parsererror|parsererror {
  213.   display: block;
  214.   font-family: sans-serif;
  215.   font-weight: bold;
  216.   white-space: pre;
  217.   margin: 1em;
  218.   padding: 1em;
  219.   border-width: thin;
  220.   border-style: inset;
  221.   border-color: red;
  222.   font-size: 14pt;
  223.   background-color: lightyellow;
  224. }
  225.  
  226. parsererror|sourcetext {
  227.   display: block;
  228.   white-space: pre;
  229.   font-family: -moz-fixed;
  230.   margin-top: 2em;
  231.   margin-bottom: 1em;
  232.   color: red;
  233.   font-weight: bold;
  234.   font-size: 12pt;
  235. }
  236.